- __anonymous
mixin Eventing!("onDraw", Windowable)
Undocumented in source.
- __anonymous
mixin Eventing!("onMove", Windowable, int, int)
Undocumented in source.
- __anonymous
mixin Eventing!("onResize", Windowable, uint, uint)
Undocumented in source.
- __anonymous
mixin Eventing!("onClose", Windowable)
Undocumented in source.
- __anonymous
mixin Eventing!("onMouseDown", Windowable, MouseButtons, int, int)
Undocumented in source.
- __anonymous
mixin Eventing!("onMouseMove", Windowable, int, int)
Undocumented in source.
- __anonymous
mixin Eventing!("onMouseUp", Windowable, MouseButtons)
Undocumented in source.
- __anonymous
mixin Eventing!("onKeyDown", Windowable, Keys, KeyModifiers)
Undocumented in source.
- __anonymous
mixin Eventing!("onKeyUp", Windowable, Keys, KeyModifiers)
Undocumented in source.
- messageLoop
void messageLoop()
Continues iteration of the message loop.
- messageLoopIteration
void messageLoopIteration()
A single iteration of the message loop.
- show
void show()
- hide
void hide()
- __anonymous
mixin IEventing!("onDraw", Windowable)
Undocumented in source.
- __anonymous
mixin IEventing!("onMove", Windowable, int, int)
Undocumented in source.
- __anonymous
mixin IEventing!("onResize", Windowable, uint, uint)
Undocumented in source.
- __anonymous
mixin IEventing!("onClose", Windowable)
Undocumented in source.
- __anonymous
mixin IEventing!("onMouseDown", Windowable, MouseButtons, int, int)
Undocumented in source.
- __anonymous
mixin IEventing!("onMouseMove", Windowable, int, int)
Undocumented in source.
- __anonymous
mixin IEventing!("onMouseUp", Windowable, MouseButtons)
Undocumented in source.
- __anonymous
mixin IEventing!("onKeyDown", Windowable, Keys, KeyModifiers)
Undocumented in source.
- __anonymous
mixin IEventing!("onKeyUp", Windowable, Keys, KeyModifiers)
Undocumented in source.
- title
string title [@property setter]
- title
dstring title [@property setter]
- title
wstring title [@property setter]
- size
void size(uint width, uint height)
- move
void move(int x, int y)
Move the window to coordinate.
- canResize
bool canResize [@property setter]
Enable / disable resizing of the window.
- fullscreen
bool fullscreen [@property setter]
- close
void close [@property getter]
Closes the window.
The window cannot reopened once closed.
*
- hasBeenClosed
bool hasBeenClosed [@property getter]
Has the window been closed?
- context
IContext context [@property getter]
Gets the current context that the window has open or null for none.
- icon
void icon(Image image)
* Sets the icon for the window.
* Supports transparency.
*
* Params:
* image = The image (from Devisualization.Image).
- icon
deprecated void icon(ushort width, ushort height, ubyte[3][] data, ubyte[3]* transparent)
Sets the icon for the window.
Supports transparency.